home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 10 / FM Towns Free Software Collection 10.iso / ms_dos / tool / fwcp / src / tree.h < prev   
Text File  |  1995-03-06  |  299b  |  14 lines

  1. typedef    struct    _DIRTREE {
  2.     struct    _DIRTREE    *next;
  3.     struct    _DIRTREE    *root;
  4.     struct    _DIRTREE    *child;
  5.     struct    _DIRTREE    *link;
  6.     int            flag;
  7.     char            name[14];
  8. } DIRTREE;
  9.  
  10. char    *pathtree(DIRTREE *dp);
  11. char    *strtree(DIRTREE *dp);
  12. void    closetree(DIRTREE *dp);
  13. DIRTREE    *opentree(DIRTREE *top);
  14.